home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 June / INTERNET104.ISO / mac / SOFTWARE / MAC / UTILS / MACSFTP / MacSFTP_Carbon_sit.hqx / MacSFTP Carbon / Sample Script < prev   
Encoding:
Text File  |  2002-01-21  |  349 b   |  10 lines

  1. tell application "MacSFTP Carbon"
  2.     set targ to make new progress window given url:"ftp://nono@127.0.0.1"
  3.     SetTellTarget to targ
  4.     Change directory "/Users/nono/Public/"
  5.     upload file "Macintosh HD:Users:nono:Desktop:upload test"
  6.     download "upload test" new name file "Macintosh HD:Users:nono:Desktop:download test"
  7.     SetTellTarget
  8.     close targ
  9. end tell
  10.